#selstart#<!--Creating next and previous record links on detail pages within a found set. 
On your hitlist page set a cookie using the [Link_CurrentSearchURL] tag-->
#selend#
[Cookie_Set:'SearchValue'=(Link_CurrentSearchURL:-NoMaxRecords,-NoSkipRecords,-NoResponse)]
[Cookie_Set:'MaxValue'=(Found_Count)]

<!-- Set a token for the current 'skip records' value within each link to detail in your hitlist:-->

<a href="[Link_DetailURL:-Layout='detail', -Response='PathToFile/fileName.html', -LinkSearchAgain]&-token.skip=[(Loop_Count) - (Shown_First)]">[Field:'your_field']</a>

<!-- Then on any following page (for example the record detail page) you can create a link to the next and previous records with the following code:-->

<!--Begin next/prev tags--> 
[var_Set:'prev_skip'=((Token_Value:'skip') - 1)]
[var_Set:'next_skip'=((Token_Value:'skip') + 1)]

[If:(Var:'prev_skip')>==0]
	<a href="[Cookie:'SearchValue']&-MaxRecords=1&-SkipRecords=[Var:'prev_skip']&-Token.skip=[Var:'prev _skip']&-Response=PathTo/Response.lasso">Previous Record</a>
[/If]

<a href="[Cookie:'SearchValue', EncodeURL]&-MaxRecords=10&-Response=PathTo/YourFile.lasso">Return to Hitlist</a>

[If:(Var:'next_skip')<(Cookie:'MaxValue')]
	<a href="[Cookie:'SearchValue']&-MaxRecords=1&-SkipRecords=[Var:'next_skip']&-Token.skip=[Var:'next_skip']&-Response=PathTo/Response.lasso">Next Record</a>
[/If]
